9 lines
153 B
Ruby
9 lines
153 B
Ruby
class CreateTapes < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :tapes do |t|
|
|
t.string :title
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|