From a9fe4310c51d1885d964a889e25c248c13a82e43 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Tue, 16 Aug 2016 02:14:36 +0200 Subject: [PATCH] Fixed datatype. --- db/migrate/20120101000001_create_base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrate/20120101000001_create_base.rb b/db/migrate/20120101000001_create_base.rb index 6ee31aaa6..d65243f07 100644 --- a/db/migrate/20120101000001_create_base.rb +++ b/db/migrate/20120101000001_create_base.rb @@ -344,7 +344,7 @@ class CreateBase < ActiveRecord::Migration t.string :area, limit: 100, null: false t.string :description, limit: 2000, null: false t.string :options, limit: 2000, null: true - t.string :state_current, limit: 200.kilobytes + 1, null: true + t.text :state_current, limit: 200.kilobytes + 1, null: true t.string :state_initial, limit: 2000, null: true t.boolean :frontend, null: false t.text :preferences, limit: 200.kilobytes + 1, null: true