mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 14:08:07 +01:00
14 lines
307 B
Ruby
14 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
|