repo.or.cz
/
lyrix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
InPlaceEditor removed from the view.
[lyrix.git]
/
db
/
migrate
/
002_create_shows.rb
blob
cdc44dc9e478202f0ff3ad4367bf4aa9b88df79a
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
9
10
def self.down
11
drop_table :shows
12
end
13
end