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

12 lines
267 B
Ruby

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