Rezervacije
This commit is contained in:
13
db/migrate/20240804052139_create_customers.rb
Normal file
13
db/migrate/20240804052139_create_customers.rb
Normal file
@@ -0,0 +1,13 @@
|
||||
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
|
||||
Reference in New Issue
Block a user