mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 12:18:06 +01:00
13 lines
271 B
Ruby
13 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
|