Mercurial > zeropaste
view db/migrate/20120905072325_set_limit_on_paste.rb @ 481:88fd5722fcb3
Update defaults
author | nanaya <me@nanaya.pro> |
---|---|
date | Sun, 28 Nov 2021 19:45:05 +0900 |
parents | 4608d12ebe03 |
children |
line wrap: on
line source
# Reduced size as needed. class SetLimitOnPaste < ActiveRecord::Migration[4.2] def change change_table :pastes do |t| t.change :ip, :string, :limit => 50 t.change :paste_hash, :string, :limit => 150 end end end