User interface for the registry along with basic settings

This commit is contained in:
Martin Lensment 2014-08-15 14:45:53 +03:00
parent d5d1d0040b
commit ceb688902f
26 changed files with 278 additions and 32 deletions

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140813135408) do
ActiveRecord::Schema.define(version: 20140815110028) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -163,6 +163,16 @@ ActiveRecord::Schema.define(version: 20140813135408) do
t.datetime "updated_at"
end
create_table "setting_groups", force: true do |t|
t.string "code"
end
create_table "settings", force: true do |t|
t.integer "setting_group_id"
t.string "code"
t.string "value"
end
create_table "users", force: true do |t|
t.string "username"
t.string "password"