mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
12 lines
267 B
Ruby
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
|