Changed songs and shows to hang off of user.
[lyrix.git] / db / migrate / 001_create_songs.rb
blob34821fe0032ec2ecffe1ba5f89b478ab29c51cdf
1 class CreateSongs < ActiveRecord::Migration
2   def self.up
3     create_table :songs do |t|
4       t.column :user_id, :integer
5       t.column :title, :string, :null => false
6       t.column :artist, :string
7       t.column :lyrics, :text
8       t.column :created_at, :datetime
9       t.column :updated_at, :datetime
10     end
11   end
13   def self.down
14     drop_table :songs
15   end
16 end