Skip to content

Instantly share code, notes, and snippets.

@srockstyle
Last active December 15, 2017 07:08
Show Gist options
  • Select an option

  • Save srockstyle/9883331 to your computer and use it in GitHub Desktop.

Select an option

Save srockstyle/9883331 to your computer and use it in GitHub Desktop.
Railsのマイグレーションでbigintを使うには ref: https://qiita.com/srockstyle/items/23a6add490933ae45252
t.integer ## 10桁までの数値
t.string ## 255文字までの文字列
create_table 'example' do |t|
t.integer :int8, :limit => 8 # bigint
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment