add models for Project, Task, Note, Category
This commit is contained in:
13
db/migrate/20250611163700_create_contacts.rb
Normal file
13
db/migrate/20250611163700_create_contacts.rb
Normal file
@@ -0,0 +1,13 @@
|
||||
class CreateContacts < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
create_table :contacts do |t|
|
||||
t.string :name
|
||||
t.string :email
|
||||
t.string :address
|
||||
t.float :geo_long
|
||||
t.float :geo_lat
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user