From 43e89cefda201abdcc8fa227dc2685830fee8003 Mon Sep 17 00:00:00 2001 From: Yan Date: Thu, 8 Jun 2017 19:12:11 +0630 Subject: [PATCH] re-add account migration --- db/migrate/20170331024747_create_accounts.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 db/migrate/20170331024747_create_accounts.rb diff --git a/db/migrate/20170331024747_create_accounts.rb b/db/migrate/20170331024747_create_accounts.rb new file mode 100644 index 00000000..5816aace --- /dev/null +++ b/db/migrate/20170331024747_create_accounts.rb @@ -0,0 +1,10 @@ +class CreateAccounts < ActiveRecord::Migration[5.1] + def change + create_table :accounts do |t| + t.string :title + t.string :account_type + + t.timestamps + end + end +end