18 lines
358 B
Ruby
18 lines
358 B
Ruby
class CreateWorks < ActiveRecord::Migration[8.1]
|
|
def change
|
|
create_table :works do |t|
|
|
t.string :title
|
|
t.integer :year
|
|
t.string :director
|
|
t.text :description
|
|
t.decimal :rating
|
|
t.boolean :organized
|
|
t.string :poster_path
|
|
t.string :backdrop_path
|
|
t.text :metadata
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|