9 lines
165 B
Ruby
9 lines
165 B
Ruby
class CreateSitereports < ActiveRecord::Migration[8.1]
|
|
def change
|
|
create_table :sitereports do |t|
|
|
t.text :context
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|