site change and file recording, better share support

This commit is contained in:
Kyle Drake 2014-06-04 18:05:29 -07:00
parent 9275b92d9f
commit da9d1e4eb3
15 changed files with 125 additions and 65 deletions

View file

@ -0,0 +1,14 @@
Sequel.migration do
up {
DB.create_table! :site_change_files do
primary_key :id
Integer :site_change_id
String :filename
DateTime :created_at
end
}
down {
DB.drop_table :site_change_files
}
end