Mercurial > zeropaste
view db/migrate/20120905072325_set_limit_on_paste.rb @ 479:b493db1f40b0
Validate format
author | nanaya <me@nanaya.pro> |
---|---|
date | Sat, 10 Oct 2020 18:16:12 +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