Mercurial > zeropaste
annotate db/migrate/20120905072325_set_limit_on_paste.rb @ 436:72557a5310d9
Update readme
- minimum ruby version
- failing drone.io (missing latest ruby and stuff)
| author | nanaya <me@myconan.net> |
|---|---|
| date | Mon, 13 Jun 2016 15:07:38 +0900 |
| parents | 682abad78313 |
| children | 4608d12ebe03 |
| rev | line source |
|---|---|
|
333
682abad78313
Documentation and line length.
edogawaconan <me@myconan.net>
parents:
21
diff
changeset
|
1 # Reduced size as needed. |
| 21 | 2 class SetLimitOnPaste < ActiveRecord::Migration |
| 3 def change | |
| 4 change_table :pastes do |t| | |
| 5 t.change :ip, :string, :limit => 50 | |
| 6 t.change :paste_hash, :string, :limit => 150 | |
| 7 end | |
| 8 end | |
| 9 end |
