OSDN Git Service

t#31892:heroku branch
[pettanr/pettanr.git] / db / migrate / 20120820100942_create_unknown_v01_licenses_attributes.rb
1 class CreateUnknownV01LicensesAttributes < ActiveRecord::Migration
2   def change
3     create_table :unknown_v01_licenses_attributes do |t|
4       t.column :license_id, :integer, :null => false, :default => 0
5       t.column :artist_name, :string, :null => false, :default => 'unknown'
6       t.column :source_url, :string 
7       t.column :note, :string 
8
9       t.timestamps
10     end
11   end
12 end