Files
archived-hc-harbor/db/migrate/20250516142043_create_neighborhood_projects.rb
2025-05-16 10:33:07 -04:00

12 lines
275 B
Ruby

class CreateNeighborhoodProjects < ActiveRecord::Migration[8.0]
def change
create_table :neighborhood_projects do |t|
t.string :airtable_id, null: false
t.index :airtable_id, unique: true
t.jsonb :airtable_fields
t.timestamps
end
end
end