12 lines
208 B
Ruby
12 lines
208 B
Ruby
class CreateSuggestions < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :suggestions do |t|
|
|
t.string :subject
|
|
t.text :body
|
|
t.boolean :sent
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|