Files
archived-hc-harbor/db/migrate/20250516140014_create_neighborhood_posts.rb
2025-05-16 10:04:02 -04:00

12 lines
269 B
Ruby

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