Files
redux-scraper/db/migrate/20241230004356_create_global_states.rb
2025-01-01 03:29:53 +00:00

16 lines
296 B
Ruby

# typed: true
class CreateGlobalStates < ActiveRecord::Migration[7.2]
def change
drop_table :domain_inkbunny_global_states
create_table :global_states do |t|
t.string :key, null: false
t.string :value
t.index :key, unique: true
t.timestamps
end
end
end