9 lines
131 B
Ruby
9 lines
131 B
Ruby
|
class CreateForms < ActiveRecord::Migration[7.1]
|
||
|
def change
|
||
|
create_table :forms do |t|
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|