Mercurial > zeropaste
view db/migrate/20150916161622_strict_character_lengths.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 | e34e0de34b65 |
children | 4608d12ebe03 |
line wrap: on
line source
class StrictCharacterLengths < ActiveRecord::Migration def change change_table :pastes do |t| t.change :key, :string, :limit => 100 t.change :secret, :string, :limit => 100 t.change :language, :string, :limit => 100 end end end