|
231 | 231 | t.index ["user_id"], name: "index_deprecated_feedback_messages_on_user_id" |
232 | 232 | end |
233 | 233 |
|
| 234 | + create_table "diaper_drive_participants", id: :serial, force: :cascade do |t| |
| 235 | + t.string "contact_name" |
| 236 | + t.string "email" |
| 237 | + t.string "phone" |
| 238 | + t.string "comment" |
| 239 | + t.integer "organization_id" |
| 240 | + t.datetime "created_at", precision: nil, null: false |
| 241 | + t.datetime "updated_at", precision: nil, null: false |
| 242 | + t.string "address" |
| 243 | + t.string "business_name" |
| 244 | + t.float "latitude" |
| 245 | + t.float "longitude" |
| 246 | + t.index ["latitude", "longitude"], name: "index_diaper_drive_participants_on_latitude_and_longitude" |
| 247 | + end |
| 248 | + |
234 | 249 | create_table "distributions", id: :serial, force: :cascade do |t| |
235 | 250 | t.text "comment" |
236 | 251 | t.datetime "created_at", precision: nil, null: false |
|
326 | 341 | t.index ["partner_id"], name: "index_families_on_partner_id" |
327 | 342 | end |
328 | 343 |
|
| 344 | + create_table "feedback_messages", force: :cascade do |t| |
| 345 | + t.bigint "user_id" |
| 346 | + t.string "message" |
| 347 | + t.string "path" |
| 348 | + t.datetime "created_at", precision: nil, null: false |
| 349 | + t.datetime "updated_at", precision: nil, null: false |
| 350 | + t.boolean "resolved" |
| 351 | + t.index ["user_id"], name: "index_feedback_messages_on_user_id" |
| 352 | + end |
| 353 | + |
329 | 354 | create_table "flipper_features", force: :cascade do |t| |
330 | 355 | t.string "key", null: false |
331 | 356 | t.datetime "created_at", precision: nil, null: false |
|
0 commit comments