vidpush/db/migrate/20140407180228_create_videolistings.rb

19 lines
458 B
Ruby
Raw Normal View History

2014-04-07 18:41:34 +00:00
class CreateVideolistings < ActiveRecord::Migration
def change
create_table :videolistings do |t|
t.string :videocode
t.string :producttypeid
t.string :remoteassetsarchive
t.string :voiceoverselection
t.string :musicselection
t.string :clientprovidedscript
t.string :keywords
t.string :focus
t.string :notes
t.string :asseturls, array: true, default: []
t.timestamps
end
end
end