Mercurial > zeropaste
annotate db/migrate/20120905072325_set_limit_on_paste.rb @ 488:994ae0349ade
Update all the javascripts
author | nanaya <me@nanaya.net> |
---|---|
date | Tue, 17 Jan 2023 01:53:36 +0900 |
parents | 4608d12ebe03 |
children |
rev | line source |
---|---|
333
682abad78313
Documentation and line length.
edogawaconan <me@myconan.net>
parents:
21
diff
changeset
|
1 # Reduced size as needed. |
463 | 2 class SetLimitOnPaste < ActiveRecord::Migration[4.2] |
21 | 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 |