11 lines
178 B
Ruby
11 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
|