about summary refs log tree commit diff
path: root/db/migrate/20160221003140_create_users.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160221003140_create_users.rb')
-rw-r--r--db/migrate/20160221003140_create_users.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20160221003140_create_users.rb b/db/migrate/20160221003140_create_users.rb
new file mode 100644
index 000000000..c9750c623
--- /dev/null
+++ b/db/migrate/20160221003140_create_users.rb
@@ -0,0 +1,12 @@
+class CreateUsers < ActiveRecord::Migration
+  def change
+    create_table :users do |t|
+      t.string :email, null: false, default: ''
+      t.integer :account_id, null: false
+
+      t.timestamps null: false
+    end
+
+    add_index :users, :email, unique: true
+  end
+end