19 lines
458 B
Ruby
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
|