Last active
June 20, 2016 08:34
-
-
Save MaksimAbramchuk/ac002572b0c60211f7491c7fb7d1ad91 to your computer and use it in GitHub Desktop.
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 | |
def change | |
create_table :users do |t| | |
t.string :telegram_id | |
t.string :first_name | |
t.string :last_name | |
t.jsonb :bot_command_data, default: {} | |
t.timestamps null: false | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment