Created
June 8, 2016 10:13
-
-
Save scaffeinate/f12348f33637a36f32788622c63374e0 to your computer and use it in GitHub Desktop.
Rails 5 API Migration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CreateUsers < ActiveRecord::Migration[5.0] | |
def change | |
create_table :users do |t| | |
t.string :first_name, null: false, default: '' | |
t.string :last_name, null: false, default: '' | |
t.string :email, null: false | |
t.timestamps | |
end | |
add_index :users, :email, unique: true | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment