1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20160221003140_create_users.rb
2016-02-22 16:00:20 +01:00

12 lines
271 B
Ruby

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