14 lines
251 B
Ruby
14 lines
251 B
Ruby
|
|
class CreateCustomers < ActiveRecord::Migration[7.1]
|
||
|
|
def change
|
||
|
|
create_table :customers do |t|
|
||
|
|
t.string :name
|
||
|
|
t.string :phone
|
||
|
|
t.text :notes
|
||
|
|
t.string :email
|
||
|
|
t.integer :birthyear
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|