blob: 6922e0acc0f887d072c294a38519d8b91bbf0ed0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateStates < ActiveRecord::Migration[6.1]
def change
create_table :states do |t|
t.references :character, null: false, foreign_key: true
t.references :condition, null: false, foreign_key: true
t.timestamp :expires_at
t.timestamps
end
end
end
|