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