Mercurial > hg > soundsoftware-site
view db/migrate/20101216140621_create_institutions.rb @ 1628:9c5f8e24dadc live tip
Quieten this cron script
author | Chris Cannam |
---|---|
date | Tue, 25 Aug 2020 11:38:49 +0100 |
parents | 596803cb34fc |
children |
line wrap: on
line source
class CreateInstitutions < ActiveRecord::Migration def self.up create_table :institutions do |t| t.string :name t.timestamps end end def self.down drop_table :institutions end end