Skip to content

Instantly share code, notes, and snippets.

@MaksimAbramchuk
Last active June 20, 2016 08:34
Show Gist options
  • Save MaksimAbramchuk/ac002572b0c60211f7491c7fb7d1ad91 to your computer and use it in GitHub Desktop.
Save MaksimAbramchuk/ac002572b0c60211f7491c7fb7d1ad91 to your computer and use it in GitHub Desktop.
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