26 lines
731 B
Ruby
26 lines
731 B
Ruby
class CreateMusicReleases < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :music_releases do |t|
|
|
t.belongs_to :project, foreign_key: true
|
|
t.belongs_to :contract_template, foreign_key: true
|
|
t.string :locale
|
|
t.text :notes
|
|
t.integer :tagging_status, default: 0
|
|
t.string :name
|
|
t.string :person_name
|
|
t.string :person_address_street1
|
|
t.string :person_address_street2
|
|
t.string :person_address_city
|
|
t.string :person_address_state
|
|
t.string :person_address_zip
|
|
t.string :person_address_country
|
|
t.string :person_phone
|
|
t.string :person_email
|
|
t.string :person_title
|
|
t.string :person_company
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|