10 lines
178 B
Ruby
10 lines
178 B
Ruby
class CreateReports < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :reports do |t|
|
|
t.string :name
|
|
t.text :comment
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|