InPlaceEditor removed from the view.
[lyrix.git] / db / migrate / 002_create_shows.rb
blobcdc44dc9e478202f0ff3ad4367bf4aa9b88df79a
1 class CreateShows < ActiveRecord::Migration
2   def self.up
3     create_table :shows do |t|
4       t.column :title, :string, :null => false
5       t.column :created_at, :datetime
6       t.column :updated_at, :datetime
7     end
8   end
10   def self.down
11     drop_table :shows
12   end
13 end