mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
15 lines
307 B
Ruby
15 lines
307 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateUsers < ActiveRecord::Migration[4.2]
|
|
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
|