add viewer to user_creations

pull/9878/head
Guido Fioravantti 8 years ago
parent 31eff66801
commit 133334ed86

@ -0,0 +1,13 @@
Sequel.migration do
up do
alter_table :user_creations do
add_column :viewer, :boolean, null: false, default: false
end
end
down do
alter_table :user_creations do
drop_column :viewer
end
end
end
Loading…
Cancel
Save