12 lines
207 B
Ruby
12 lines
207 B
Ruby
class CreateMovies < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :movies do |t|
|
|
t.string :title
|
|
t.string :rating
|
|
t.decimal :total_gross
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|