Last active
December 15, 2017 07:08
-
-
Save srockstyle/9883331 to your computer and use it in GitHub Desktop.
Railsのマイグレーションでbigintを使うには ref: https://qiita.com/srockstyle/items/23a6add490933ae45252
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
| t.integer ## 10桁までの数値 | |
| t.string ## 255文字までの文字列 |
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
| 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