13 lines
244 B
Ruby
13 lines
244 B
Ruby
|
class CreateSignatories < ActiveRecord::Migration[7.1]
|
||
|
def change
|
||
|
create_table :signatories do |t|
|
||
|
t.string :name
|
||
|
t.string :profession
|
||
|
t.string :email
|
||
|
t.boolean :private_email
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|