vidpush/db/migrate/20140407180228_create_videolistings.rb
2014-04-07 14:41:34 -04:00

19 lines
458 B
Ruby

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