1 class CreateSongs < ActiveRecord::Migration
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